import { LoaderFunctionArgs } from 'react-router'; import { LocationsResponse } from '@/types/locatorApi'; export interface HomeRecyclingCentreLoaderResponse { locations: Promise; } export default function homeRecyclingCentreLoader({ params, }: LoaderFunctionArgs): Promise<{ locations: Promise; }>;